@font-face {
    font-family: font;
    src: url(../Vazir/Vazir-Bold-FD.ttf);
}
html,body{
width: 100%;
height: auto;
float: left;
margin: 0;
padding: 0;   
direction: rtl;
}
body *{
    font-family: font;
}
a{
    text-decoration: none;
}
.result-container{
    width: 90%;
    height: auto;
    float: left;
    display: flex;
    border-top: 1.5px solid rgb(0, 94, 202);
    box-sizing: border-box;
    padding: 2em 0;
    margin: 0 5%;
    margin-top: 1em;
}
.result-sec{
    width: 40%;
    height: auto;
    float: right;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    padding: 1em !important;
    border: 2px solid rgb(80 106 173 / 38%);
    box-sizing: border-box;
    border-radius: 10px;
    background-color: white;
}
.result-sec h3{
    width: 100%;
    height: auto;
    float: left;
    font-size: 30px;
    margin: 0;
    border-bottom: 2px solid rgb(80 106 173 / 38%);
    padding-bottom: 0.5em;
    margin-bottom: 0.5em;
}
.result-sec li{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    align-items: center;
    list-style: none;
    padding: 1em 0;
}
.result-sec span{
    width: 50%;
    float: left;
}
.result-sec span:first-child{
    font-weight: bold;
}
.result-sec span:last-child{
    text-align: end;
}
.total-gross{
    font-size: 21px;
    border-top: 2px solid rgb(80 106 173 / 38%);
    margin-top: 1em;
}
.note-sec{
    width: 60%;
    height: auto;
    float: left;
    padding-left: 2.5%;
    box-sizing: border-box;
    font-size: 15px;
}
.note-sec p{
    width: 100%;
    height: auto;
    float: left;
    line-height: 45px;
    text-align: justify;
    margin-top: 0;
}
.result-box{
    width: 95%;
    height: auto;
    float: left;
    display: flex;
    padding: 0 2.5%;
    margin-bottom: 2em;
}
.cart-option{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    margin: 0 !important;
}
.cart-btn{
    width: 100%;
    float: left;
    border: 2px solid rgb(3, 189, 0);
    border-radius: 10px;
    background-color: rgb(223, 255, 223);
    color: rgb(3, 189, 0);
    padding:0.5em 5%;
    transition: 0.4s;
    cursor: pointer;
    box-sizing: border-box;
    font-size: 15px;
}
.cart-btn:hover{
    color: white;
    background-color: rgb(3, 189, 0);
    transition: 0.4s;
}
.m-discount-sec{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    overflow: hidden;
    border-radius: 100px;
    border: 1px solid rgb(80 106 173 / 38%);
    /* flex-direction: row-reverse; */
}
.m-discount-sec input{
    width: 85%;
    height: auto;
    float: left;
    box-sizing: border-box;
    padding: 0.6em 1em;
    border: none;
    font-size: 14px;
    background-color: rgba(223, 223, 223, 0.296);
    outline: none;
}
.m-discount-sec button{
    width: 15%;
    height: auto;
    float: left;
    border: none;
    background-color: #005eca;
    color: white;
    cursor: pointer;
}
@media only screen and (max-width:1200px){
    .result-container {
        flex-direction: column;
    }
    .result-sec,.note-sec {
        width: 100%;
    }
    .note-sec {
        margin-bottom: 1em;
        padding: 0;
    }
}
@media only screen and (max-width:550px){
    .result-sec h3{
        text-align: center;
        font-size: 25px;
    }
    .result-sec span,.cart-btn,.note-sec p {
        font-size: 13px;
    }
    .m-discount-sec input {
        width: 80%;
    }
    .m-discount-sec button {
        width: 20%;
    }
}